HTMLify
style.css
Views: 20 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | * { margin: 0; padding: 0; } html { font-size: 62.5%; } .navbar-wrapper { width: 100%; height: 100vh; background: #eccc68; display: flex; justify-content: center; align-items: center; } .navbar { width: 20rem; height: 20rem; background-color: #fd7272; position: relative; display: flex; justify-content: center; align-items: center; border-radius: 50%; transform: scale(0) rotate(-180deg); transition: transfrom 0.5s; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0) 0.23; } .change .navbar { transform: scale(1) rotate(0); transition: all 1s; } .navbar-link { position: absolute; } .navbar-link i { font-size: 2.5rem; color: #fff; transition: color 0.3s; } .navbar-link:hover i { color: #222; } .navbar-link:nth-child(1) { top: 2rem; } .navbar-link:nth-child(2) { top: 6rem; right: 2rem; } .navbar-link:nth-child(3) { bottom: 6rem; right: 2rem; } .navbar-link:nth-child(4) { bottom: 2rem; } .navbar-link:nth-child(5) { bottom: 6rem; left: 2rem; } .navbar-link:nth-child(6) { top: 6rem; left: 2rem; } .navbar-btn { position: absolute; width: 6rem; height: 6rem; background: #4a69bd; display: flex; justify-content: center; align-items: center; border-radius: 50%; cursor: pointer; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } .navbar-btn i { font-size: 2rem; color: #fff; transition: transform 0.5s; } .change .navbar-btn i { transform: rotate(45deg); } |